home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 1995 January
/
macformat-020.iso
/
Shareware City
/
Education
/
RLaB
/
examples
/
factest.r
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-02-21
|
152 b
|
13 lines
|
[
TEXT/ttxt
]
factest = function ( n )
{
local( i , x );
i = 0; x = 50;
while( i < n )
{
fac( x );
i++;
}
printf("factest done, n = %i\n", n);
}